home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / dtime / data.1 / dateDlg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-08  |  1.3 KB  |  54 lines

  1. // datenDlg.h : header file
  2. //
  3.  
  4. #include "dtime.h"
  5.  
  6. /////////////////////////////////////////////////////////////////////////////
  7. // CDatentryDlg dialog
  8.  
  9. class CDatentryDlg : public CDialog
  10. {
  11. // Construction
  12. public:
  13.   CDatentryDlg(CWnd* pParent = NULL); // standard constructor
  14.  
  15. // Dialog Data
  16.   //{{AFX_DATA(CDatentryDlg)
  17.   enum { IDD = IDD_DATENTRY_DIALOG };
  18.     // NOTE: the ClassWizard will add data members here
  19.   //}}AFX_DATA
  20.  
  21.   // ClassWizard generated virtual function overrides
  22.   //{{AFX_VIRTUAL(CDatentryDlg)
  23.   protected:
  24.   virtual void DoDataExchange(CDataExchange* pDX);  // DDX/DDV support
  25.   //}}AFX_VIRTUAL
  26.  
  27. // Implementation
  28. protected:
  29.   HICON m_hIcon;
  30.  
  31.   CDateControl m_ctrlCDate;
  32.   CLTimeSpanControl m_ctrlCLTimeSpan;
  33.   CLTimeOfDayControl m_ctrlCLTimeOfDay;
  34.   CLDateControl m_ctrlCLDate;
  35.  
  36.   CDate m_CDate;
  37.   CLTimeSpan m_CLTimeSpan;
  38.   CLTimeOfDay m_CLTimeOfDay;
  39.   CLDate m_CLDate;
  40.  
  41.  
  42.   // Generated message map functions
  43.   //{{AFX_MSG(CDatentryDlg)
  44.   virtual BOOL OnInitDialog();
  45.   afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  46.   afx_msg void OnPaint();
  47.   afx_msg HCURSOR OnQueryDragIcon();                        
  48.   //}}AFX_MSG                                                 
  49.   #ifndef _WIN32
  50.   afx_msg void OnEditButton();
  51.   #endif
  52.   DECLARE_MESSAGE_MAP()
  53. };
  54.